.menu-colonne {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 16px;
}


.background-backoffice {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    border-radius: 4px;
    background-color: #D34B34;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 3px 6px #00000029;
}
.btn_navigation-filtre {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    opacity: 0.27;
    border-radius: 4px;
}

.btn_navigation-titre {
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-family: 'OpenSans-ExtraBold';
    font-size: 22px;
    text-shadow: 3px 3px 6px #00000082;
}
.background-backoffice .btn_navigation-titre {
    padding: 0px 30px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
}

.btn-icone {
    border-radius: 4px;
    background-color: #FCBE00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'OpenSans_Condensed-Bold';
    box-shadow: 0px 3px 6px #00000029;
}
.btn-icone img {
    margin-bottom: 12px;
}

.grid-l1-h1 {
    grid-column: span 1;
    grid-row: span 1;
}
.grid-l2-h1 {
    grid-column: span 2;
    grid-row: span 1;
}
.grid-l1-h2 {
    grid-column: span 1;
    grid-row: span 2;
}
.grid-l2-h2 {
    grid-column: span 2;
    grid-row: span 2;
}

.color-filtre-vert .btn_navigation-filtre {
    background-color: #559432;
}
.color-filtre-ciel .btn_navigation-filtre {
    background-color: #7DD4EB;
}
.color-filtre-jaune .btn_navigation-filtre {
    background-color: #FCBE00;
}
.color-filtre-noir .btn_navigation-filtre {
    background-color: #1C1C1C;
}
.color-filtre-bleu .btn_navigation-filtre {
    background-color: #275994;
}
.color-filtre-orange .btn_navigation-filtre {
    background-color: #D34B34;
}
.color-filtre-violet .btn_navigation-filtre {
    background-color: #8A56B6;
}